mutations.js ➔ ???   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
nc 1
nop 2
dl 0
loc 3
c 0
b 0
f 0
cc 1
rs 10
1
export default {
2
  SET_COUNTER: (state, { type, counter }) => {
3
    state.counters[type] = counter
4
  }
5
}
6